-
Notifications
You must be signed in to change notification settings - Fork 14.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for custom celery configs #45038
Conversation
Congratulations on your first Pull Request and welcome to the Apache Airflow community! If you have any issues or are unsure about any anything please check our Contributors' Guide (https://github.com/apache/airflow/blob/main/contributing-docs/README.rst)
|
1a172e5
to
28d1806
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the PR - the contribution looks really small and is efficient. Thanks for taking care for the backwards compatibility.
I assume the fallback handling in default_celery.py:72
is not needed if the config entry is correctly registered as a default in providers/src/airflow/providers/celery/provider.yaml
- There all configs for the provider should be registered. This also would add missing documentation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you also add a test for this?
Addressed the comments. CI is failing not able to debug why CI pipeline is failing. |
26a981b
to
b719528
Compare
Except some minor comment I think it is good, let me check what is broken on CI. Nothing related to your code. Then I think... LGTM! |
4d67fe8
to
2c56333
Compare
2c56333
to
382d45e
Compare
Somthing is wrong with this PR and CI - I don't see the reason but I am very sure it is not related to the changes. I am on it... |
providers/src/airflow/providers/celery/executors/default_celery.py
Outdated
Show resolved
Hide resolved
…nce link for all the celery configs.
…nce link for all the celery configs.
f468a82
to
e3de3b6
Compare
@jscheffl I have fixed the unit test. The CI is passing. and Thanks for the help in dubuging the CI issue. |
providers/src/airflow/providers/celery/executors/default_celery.py
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
THANKS for the patience, fixes getting this green!
Awesome work, congrats on your first merged pull request! You are invited to check our Issue Tracker for additional contributions. |
closes: #45037
Description:
Currently Airflow support limited celery options only. This PR adds the support for the additional celery config for celery workers.